home *** CD-ROM | disk | FTP | other *** search
- The summary of the transitions effects :
-
- - Bigger : Display image from small to big
- Direction : Center, Up, Down, Left, Right, Up_Left, Up_Right,
- Down_Left, Down_Right
- Size : No
-
- - BMove : Moving image
- Direction : Up, Down, Left, Right
- Size : No
-
- - CloseEffect : Close image from two side
- Direction : Vertical, Horizontal, Vertical_Out, Horizontal_Out
- Size : No
-
- - CrossUpDown : Cross image Up to Down
- Direction : No
- Size : No
-
- - CrossLeftRight : Cross image Left to Right
- Direction : No
- Size : No
-
- - Fall : Rain fall Effect
- Direction : Up, Down, Left, Right
- Size : No
-
- - Line2Pass : Line display, two pass
- Direction : Up, Down, Left, Right
- Size : No
-
- - LineCross : Line cross from two side
- Direction : Up_Down, Left_Right
- Size : Yes
-
- - RandomBox : Random display image with small box
- Direction : No
- Size : Yes
-
- - RandomLine : Random display image with line
- Direction : Vertical, Horizontal
- Size : No
-
- - Rectangle : Display image with rectangle
- Direction : Center, Up_Left, Up_Right, Down_Left, Down_Right
- Size : No
-
- - Roll : Roll image
- Direction : Up, Down, Left, Right
- Size : No
-
- - ShowPage : Showing the current image
- Direction : No
- Size : No
-
- - TwisterBox : Image display with twister (box) style
- Direction : In, Out
- Size : Yes
-
- - TwisterCircle : Image display with twister (circle) style
- Direction : In, Out
- Size : Yes
-
- - TwisterCircleAntiC : TwisterCircle with Anti Clock Wise direction
- Direction : In, Out
- Size : Yes
-
- - VenetialBlind : Venetial Blind
- Direction : Up, Down, Left, Right
- Size : Yes
-
- Direction value : ( Direct )
- CENTER = 0
- UP = 1
- DOWN = 2
- LEFT = 3
- RIGHT = 4
- UP_LEFT = 5
- UP_RIGHT = 6
- DOWN_LEFT = 7
- DOWN_RIGHT = 8
- OUT = 0
- IN = 1
- VER = 0 ( Vertical )
- HOR = 1 ( Horizontal )
- VER_OUT = 2 ( Vertical Out )
- HOR_OUT = 3 ( Horizontal Out )
- UP_DOWN = 0
- LEFT_RIGHT = 1
-
- Size : ( Size )
- Size is the size of lines or box to be use when displaying
- image.
-
- Ohter Important Properties :
- AutoResize : True or False
- The Control will automaticaly resize to the size of image
-
- Delay : Integer
- Time delay in second
-
- Picture : Normal picture format same as picture box
-
- Visible : True or False
- Control is visible or hidden
-
- Other Method :
- Cls : Clear the Image in control
- ShowAbout : Display the About Box
-
-
- Example :
- Loading pictures :
- 1. In design time, just set the picture properties.
- 2. In run time, use the LoadPicture statement.
- HSBitmapDisplayer1.Picture = LoadPicture("C:\abc\xyz.bmp")
-
- Display pictures :
- Example :
- HSBitmapDisplayer1.Direct = 1 ( The Direction )
- HSBitmapDisplayer1.Delay = 2 ( Set the Delay )
- HSBitmapDisplayer1.Bigger ( Call Effect )
-
-